Wesbos - Dev Tools (개발자 도구)
Interpolated
'hello %s', 'hoonjoo'
1 | console.log("hello my name is %s What's your name?", 'hoonjoo'); |
Styled
1 | // CSS를 컨트롤 할 수도 있다! |
warning
1 | // 콘솔 창에 경고 표시를 할 수 있음 |
error
1 | // 콘솔 창에 오류 표시를 할 수 있음 |
Info
1 | console.info(''); |
Testing
1 | assert(1 === 1, 'That's Wrong!') |
Cleaning
1 | console.clear(); |
Grouping Together
1 | dogs.forEach(dog ⇒ { |
count
1 | console.count(); |
time
1 | // 불러오는데 얼마나 걸리는지? |
Wesbos - Dev Tools (개발자 도구)
https://hoonjoo-park.github.io/javascript/wesbos/09. Dev Tools/